This document is aimed at evaluating the imputation procedure.
For this document we use the following packages
library(dplyr) # Data manipulation
library(mice) # Data imputation
library(magrittr) # Pipes
library(purrr) # Functional programming
library(haven) # Import data
library(DT) # Interactive tables
We read in the workspace 3. Data imputation.Rdata from the \Workspaces\ directory in the project’s root. This workspace has been generated by the document 3. Data imputation.Rmd. The proces leading to this workspace is also documented in the file 3. Data imputation.html.
load("Workspaces/3. Data imputation.Rdata")
To inspect the convergence of the mice algorithm.
plot(imp)